home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Storage / Bento / CM / CMVers.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  2.8 KB  |  74 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        CMVers.h
  3.  
  4.     Contains:    Container Manager Version and Copyright Definitions
  5.  
  6.     Written by:    Ira L. Ruben
  7.  
  8.     Owned by:    Ed Lai
  9.  
  10.     Copyright:    © 1992 - 1996 by Apple Computer, Inc., all rights reserved.
  11.  
  12.     Change History (most recent first):
  13.  
  14.          <2>     1/15/96    TJ        Cleaned Up
  15.          <2>     8/26/94    EL        #1181622 Ownership update.
  16.          <2>      5/9/94    MB        #1162181: Changes necessary to install MMM.
  17.          <1>      2/3/94    EL        first checked in
  18.  
  19.     To Do:
  20. */
  21.  
  22. /*---------------------------------------------------------------------------*
  23.  |                                                                           |
  24.  |                            <<<  CMVers.h   >>>                            |
  25.  |                                                                           |
  26.  |            Container Manager Version and Copyright Definitions            |
  27.  |                                                                           |
  28.  |                               Ira L. Ruben                                |
  29.  |                                 4/15/92                                   |
  30.  |                                                                           |
  31.  |                     Copyright Apple Computer, Inc. 1992-1994              |
  32.  |                           All rights reserved.                            |
  33.  |                                                                           |
  34.  *---------------------------------------------------------------------------*
  35.  
  36.  This file sole goal in life is to define the Container Manager version and copyright
  37.  strings.
  38.  
  39.  Note, the copyright string is used in   CMSesOps.c   by a routine called from
  40.  CMStartSession().  The name of that routine is the copyright string with underscores in
  41.  place of spaces.  This comes from a macro also defined here.
  42.  
  43.  The version string defines the current version of the Container Manager so we can tell
  44.  what versions go with what versions of the specification and for bug reporting.  The
  45.  version string is placed in the global session data.
  46. */
  47.  
  48. #ifndef __CMVERSION__
  49. #define __CMVERSION__
  50.  
  51. #ifndef CMVersion
  52. #define CMVersion "<<< 1.0d4.2 >>>"
  53. #endif
  54.     /*
  55.     This version number should agree with the current spec so we know who goes with what!
  56.     Currently this must be manually changed.
  57.     */
  58.     
  59.  
  60. #define Copyright "Copyright Apple Computer, Inc. 1991-1994. " \
  61.                                     "All rights reserved. "                                             \
  62.                                     "By Ira L. Ruben."
  63.                                     
  64. #define Copyright_Apple_Computer Copyright_Apple_Computer_Inc_1991_1994_All_rights_reserved
  65.     /*
  66.     This is the copyright notice needed to make Apple lawers happy.  The first macro is used
  67.     in a call to a routine named by the second macro.  That will have the effect of embedding
  68.     the string into the code (as data and a routine name) and keeping it from being dead code
  69.     stripped (at least on linkers smart enough to do such things).  You sould always keep 
  70.     both strings in parallel.
  71.     */
  72.  
  73. #endif
  74.